home *** CD-ROM | disk | FTP | other *** search
/ Maximum CD 2000 March / maximum-cd-2000-03.iso / Quake3 Game Source / Q3AGameSource.exe / Main / g_syscalls.asm < prev    next >
Encoding:
Assembly Source File  |  2000-01-18  |  5.9 KB  |  213 lines

  1. code
  2.  
  3. equ    trap_Printf                -1
  4. equ    trap_Error                -2
  5. equ    trap_Milliseconds        -3
  6. equ    trap_Cvar_Register        -4
  7. equ    trap_Cvar_Update        -5
  8. equ    trap_Cvar_Set            -6
  9. equ    trap_Cvar_VariableIntegerValue    -7
  10. equ    trap_Cvar_VariableStringBuffer    -8
  11. equ    trap_Argc                -9
  12. equ    trap_Argv                -10
  13. equ    trap_FS_FOpenFile        -11
  14. equ    trap_FS_Read            -12
  15. equ    trap_FS_Write            -13
  16. equ    trap_FS_FCloseFile        -14
  17. equ    trap_SendConsoleCommand    -15
  18. equ    trap_LocateGameData        -16
  19. equ    trap_DropClient            -17
  20. equ    trap_SendServerCommand    -18
  21. equ    trap_SetConfigstring    -19
  22. equ    trap_GetConfigstring    -20
  23. equ    trap_GetUserinfo        -21
  24. equ    trap_SetUserinfo        -22
  25. equ    trap_GetServerinfo        -23
  26. equ    trap_SetBrushModel        -24
  27. equ    trap_Trace                -25
  28. equ    trap_PointContents        -26
  29. equ trap_InPVS                -27
  30. equ    trap_InPVSIgnorePortals    -28
  31. equ    trap_AdjustAreaPortalState    -29
  32. equ    trap_AreasConnected        -30
  33. equ    trap_LinkEntity            -31
  34. equ    trap_UnlinkEntity        -32
  35. equ    trap_EntitiesInBox        -33
  36. equ    trap_EntityContact        -34
  37. equ    trap_BotAllocateClient    -35
  38. equ    trap_BotFreeClient        -36
  39. equ    trap_GetUsercmd            -37
  40. equ    trap_GetEntityToken        -38
  41. equ    trap_FS_GetFileList        -39
  42. equ trap_DebugPolygonCreate    -40
  43. equ trap_DebugPolygonDelete    -41
  44.  
  45. equ    memset                    -101
  46. equ    memcpy                    -102
  47. equ    strncpy                    -103
  48. equ    sin                        -104
  49. equ    cos                        -105
  50. equ    atan2                    -106
  51. equ    sqrt                    -107
  52. equ floor                    -111
  53. equ    ceil                    -112
  54. equ    testPrintInt            -113
  55. equ    testPrintFloat            -114
  56.  
  57.  
  58.  
  59. equ trap_BotLibSetup                    -201
  60. equ trap_BotLibShutdown                    -202
  61. equ trap_BotLibVarSet                    -203
  62. equ trap_BotLibVarGet                    -204
  63. equ trap_BotLibDefine                    -205
  64. equ trap_BotLibStartFrame                -206
  65. equ trap_BotLibLoadMap                    -207
  66. equ trap_BotLibUpdateEntity                -208
  67. equ trap_BotLibTest                        -209
  68.  
  69. equ trap_BotGetSnapshotEntity            -210
  70. equ trap_BotGetConsoleMessage            -211
  71. equ trap_BotUserCommand                    -212
  72.  
  73.  
  74.  
  75. equ trap_AAS_EntityVisible                -301
  76. equ trap_AAS_InFieldOfVision            -302
  77. equ trap_AAS_VisibleClients                -303
  78. equ trap_AAS_EntityInfo                    -304
  79.  
  80. equ trap_AAS_Initialized                -305
  81. equ trap_AAS_PresenceTypeBoundingBox    -306
  82. equ trap_AAS_Time                        -307
  83.  
  84. equ trap_AAS_PointAreaNum                -308
  85. equ trap_AAS_TraceAreas                    -309
  86.  
  87. equ trap_AAS_PointContents                -310
  88. equ trap_AAS_NextBSPEntity                -311
  89. equ trap_AAS_ValueForBSPEpairKey        -312
  90. equ trap_AAS_VectorForBSPEpairKey        -313
  91. equ trap_AAS_FloatForBSPEpairKey        -314
  92. equ trap_AAS_IntForBSPEpairKey            -315
  93.  
  94. equ trap_AAS_AreaReachability            -316
  95.  
  96. equ trap_AAS_AreaTravelTimeToGoalArea    -317
  97.  
  98. equ trap_AAS_Swimming                    -318
  99. equ trap_AAS_PredictClientMovement        -319
  100.  
  101.  
  102.  
  103.  
  104. equ trap_EA_Say                            -401
  105. equ trap_EA_SayTeam                        -402
  106. equ trap_EA_UseItem                        -403
  107. equ trap_EA_DropItem                    -404
  108. equ trap_EA_UseInv                        -405
  109. equ trap_EA_DropInv                        -406
  110. equ trap_EA_Gesture                        -407
  111. equ trap_EA_Command                        -408
  112.  
  113. equ trap_EA_SelectWeapon                -409
  114. equ trap_EA_Talk                        -410
  115. equ trap_EA_Attack                        -411
  116. equ trap_EA_Use                            -412
  117. equ trap_EA_Respawn                        -413
  118. equ trap_EA_Jump                        -414
  119. equ trap_EA_DelayedJump                    -415
  120. equ trap_EA_Crouch                        -416
  121. equ trap_EA_MoveUp                        -417
  122. equ trap_EA_MoveDown                    -418
  123. equ trap_EA_MoveForward                    -419
  124. equ trap_EA_MoveBack                    -420
  125. equ trap_EA_MoveLeft                    -421
  126. equ trap_EA_MoveRight                    -422
  127. equ trap_EA_Move                        -423
  128. equ trap_EA_View                        -424
  129.  
  130. equ trap_EA_EndRegular                    -425
  131. equ trap_EA_GetInput                    -426
  132. equ trap_EA_ResetInput                    -427
  133.  
  134.  
  135.  
  136. equ trap_BotLoadCharacter                -501
  137. equ trap_BotFreeCharacter                -502
  138. equ trap_Characteristic_Float            -503
  139. equ trap_Characteristic_BFloat            -504
  140. equ trap_Characteristic_Integer            -505
  141. equ trap_Characteristic_BInteger        -506
  142. equ trap_Characteristic_String            -507
  143.  
  144. equ trap_BotAllocChatState                -508
  145. equ trap_BotFreeChatState                -509
  146. equ trap_BotQueueConsoleMessage            -510
  147. equ trap_BotRemoveConsoleMessage        -511
  148. equ trap_BotNextConsoleMessage            -512
  149. equ trap_BotNumConsoleMessages            -513
  150. equ trap_BotInitialChat                    -514
  151. equ trap_BotReplyChat                    -515
  152. equ trap_BotChatLength                    -516
  153. equ trap_BotEnterChat                    -517
  154. equ trap_StringContains                    -518
  155. equ trap_BotFindMatch                    -519
  156. equ trap_BotMatchVariable                -520
  157. equ trap_UnifyWhiteSpaces                -521
  158. equ trap_BotReplaceSynonyms                -522
  159. equ trap_BotLoadChatFile                -523
  160. equ trap_BotSetChatGender                -524
  161. equ trap_BotSetChatName                    -525
  162.  
  163. equ trap_BotResetGoalState                -526
  164. equ trap_BotResetAvoidGoals                -527
  165. equ trap_BotPushGoal                    -528
  166. equ trap_BotPopGoal                        -529
  167. equ trap_BotEmptyGoalStack                -530
  168. equ trap_BotDumpAvoidGoals                -531
  169. equ trap_BotDumpGoalStack                -532
  170. equ trap_BotGoalName                    -533
  171. equ trap_BotGetTopGoal                    -534
  172. equ trap_BotGetSecondGoal                -535
  173. equ trap_BotChooseLTGItem                -536
  174. equ trap_BotChooseNBGItem                -537
  175. equ trap_BotTouchingGoal                -538
  176. equ trap_BotItemGoalInVisButNotVisible    -539
  177. equ trap_BotGetLevelItemGoal            -540
  178. equ trap_BotAvoidGoalTime                -541
  179. equ trap_BotInitLevelItems                -542
  180. equ trap_BotUpdateEntityItems            -543
  181. equ trap_BotLoadItemWeights                -544
  182. equ trap_BotFreeItemWeights                -546
  183. equ trap_BotSaveGoalFuzzyLogic            -546
  184. equ trap_BotAllocGoalState                -547
  185. equ trap_BotFreeGoalState                -548
  186.  
  187. equ trap_BotResetMoveState                -549
  188. equ trap_BotMoveToGoal                    -550
  189. equ trap_BotMoveInDirection                -551
  190. equ trap_BotResetAvoidReach                -552
  191. equ trap_BotResetLastAvoidReach            -553
  192. equ trap_BotReachabilityArea            -554
  193. equ trap_BotMovementViewTarget            -555
  194. equ trap_BotAllocMoveState                -556
  195. equ trap_BotFreeMoveState                -557
  196. equ trap_BotInitMoveState                -558
  197.  
  198. equ trap_BotChooseBestFightWeapon        -559
  199. equ trap_BotGetWeaponInfo                -560
  200. equ trap_BotLoadWeaponWeights            -561
  201. equ trap_BotAllocWeaponState            -562
  202. equ trap_BotFreeWeaponState                -563
  203. equ trap_BotResetWeaponState            -564
  204. equ trap_GeneticParentsAndChildSelection -565
  205. equ trap_BotInterbreedGoalFuzzyLogic    -566
  206. equ trap_BotMutateGoalFuzzyLogic        -567
  207. equ trap_BotGetNextCampSpotGoal            -568
  208. equ trap_BotGetMapLocationGoal            -569
  209. equ trap_BotNumInitialChats                -570
  210. equ trap_BotGetChatMessage                -571
  211. equ trap_BotRemoveFromAvoidGoals        -572
  212. equ trap_BotPredictVisiblePosition        -573
  213.